originalString = " Hello, World! "
strippedString = originalString.lstrip()
strippedSpecificChars = originalString.lstrip(" H")
print("Original string:", repr(originalString))
print("Stripped string (whitespace):", repr(strippedString))
print("Stripped string (specific chars ' H'):", repr(strippedSpecificChars))
exampleString = "!!!Hello, World!!!"
strippedExclamations = exampleString.lstrip("!")
print("Example string:", repr(exampleString))
print("Stripped string (exclamations):", repr(strippedExclamations))